home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 June / EnigmA AMIGA RUN 08 (1996)(G.R. Edizioni)(IT)[!][issue 1996-06][EARSAN CD VII].iso / earcd / c-lang / strmc105.lha / StormC-Demo / INCLUDE / clib / diskfont_protos.h < prev    next >
C/C++ Source or Header  |  1996-01-02  |  1KB  |  45 lines

  1. #ifndef  CLIB_DISKFONT_PROTOS_H
  2. #define  CLIB_DISKFONT_PROTOS_H
  3.  
  4. /*
  5. **    $VER: diskfont_protos.h 38.0 (18.6.92)
  6. **    Includes Release 40.15
  7. **
  8. **    C prototypes. For use with 32 bit integers only.
  9. **
  10. **    (C) Copyright 1990-1993 Commodore-Amiga, Inc.
  11. **        All Rights Reserved
  12. */
  13.  
  14. #ifndef  DOS_DOS_H
  15. #include <dos/dos.h>
  16. #endif
  17. #ifndef  DISKFONT_DISKFONT_H
  18. #include <diskfont/diskfont.h>
  19. #endif
  20.  
  21. #ifdef __cplusplus
  22. extern "C" {
  23. #endif
  24.  
  25. struct TextFont *OpenDiskFont( struct TextAttr *textAttr );
  26. LONG AvailFonts( STRPTR buffer, long bufBytes, long flags );
  27. /*--- functions in V34 or higher (Release 1.3) ---*/
  28. struct FontContentsHeader *NewFontContents( BPTR fontsLock, STRPTR fontName );
  29. void DisposeFontContents( struct FontContentsHeader *fontContentsHeader );
  30. /*--- functions in V36 or higher (Release 2.0) ---*/
  31. struct DiskFont *NewScaledDiskFont( struct TextFont *sourceFont,
  32.     struct TextAttr *destTextAttr );
  33.  
  34. #ifdef __cplusplus
  35. }
  36. #endif
  37.  
  38. #ifdef STORMPRAGMAS
  39. #ifndef _INCLUDE_PRAGMA_DISKFONT_LIB_H
  40. #include <pragma/diskfont_lib.h>
  41. #endif
  42. #endif
  43.  
  44. #endif     /* CLIB_DISKFONT_PROTOS_H */
  45.